Hide first of type elements using css , how to hide elements using css

56

.ctr-1 h3:first-of-type { display:none; }
/* - Or - */
.ctr-1 h3:nth-of-type(0) { display:none; }

Comments

Submit
0 Comments